home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 1996 September & October
/
Amiga-CD 1996 #9-10.iso
/
ausgabe_9_96
/
kommunikation
/
mm_030
/
rexx
/
mm_crcfile.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-04-29
|
266b
|
18 lines
/*
** This script shows how find the CRC-32 of a file
*/
address 'MAILMANAGER'
file = 'SYS:'
MM_FileReq 'file'
if RC = 0 THEN DO
MM_CRCFile file 'crc'
text = 'Il CRC-32 di b' file 'nè:b' crc
gadget = "*_Ok"
MM_Requester 'CRC-32' 'text' 'gadget'
END
exit